encoding/binary.littleEndian.Uint32 (method, view implemented interface methods)
38 uses
encoding/binary (current package)
binary.go#L86: func (littleEndian) Uint32(b []byte) uint32 {
compress/gzip
gunzip.go#L189: if t := int64(le.Uint32(z.buf[4:8])); t > 0 {
gunzip.go#L265: digest := le.Uint32(z.buf[:4])
gunzip.go#L266: size := le.Uint32(z.buf[4:8])
vendor/golang.org/x/crypto/chacha20
chacha_generic.go#L98: binary.LittleEndian.Uint32(key[0:4]),
chacha_generic.go#L99: binary.LittleEndian.Uint32(key[4:8]),
chacha_generic.go#L100: binary.LittleEndian.Uint32(key[8:12]),
chacha_generic.go#L101: binary.LittleEndian.Uint32(key[12:16]),
chacha_generic.go#L102: binary.LittleEndian.Uint32(key[16:20]),
chacha_generic.go#L103: binary.LittleEndian.Uint32(key[20:24]),
chacha_generic.go#L104: binary.LittleEndian.Uint32(key[24:28]),
chacha_generic.go#L105: binary.LittleEndian.Uint32(key[28:32]),
chacha_generic.go#L108: binary.LittleEndian.Uint32(nonce[0:4]),
chacha_generic.go#L109: binary.LittleEndian.Uint32(nonce[4:8]),
chacha_generic.go#L110: binary.LittleEndian.Uint32(nonce[8:12]),
chacha_generic.go#L361: x4 := binary.LittleEndian.Uint32(key[0:4])
chacha_generic.go#L362: x5 := binary.LittleEndian.Uint32(key[4:8])
chacha_generic.go#L363: x6 := binary.LittleEndian.Uint32(key[8:12])
chacha_generic.go#L364: x7 := binary.LittleEndian.Uint32(key[12:16])
chacha_generic.go#L365: x8 := binary.LittleEndian.Uint32(key[16:20])
chacha_generic.go#L366: x9 := binary.LittleEndian.Uint32(key[20:24])
chacha_generic.go#L367: x10 := binary.LittleEndian.Uint32(key[24:28])
chacha_generic.go#L368: x11 := binary.LittleEndian.Uint32(key[28:32])
chacha_generic.go#L369: x12 := binary.LittleEndian.Uint32(nonce[0:4])
chacha_generic.go#L370: x13 := binary.LittleEndian.Uint32(nonce[4:8])
chacha_generic.go#L371: x14 := binary.LittleEndian.Uint32(nonce[8:12])
chacha_generic.go#L372: x15 := binary.LittleEndian.Uint32(nonce[12:16])
vendor/golang.org/x/crypto/chacha20poly1305
chacha20poly1305_amd64.go#L34: state[4] = binary.LittleEndian.Uint32(key[0:4])
chacha20poly1305_amd64.go#L35: state[5] = binary.LittleEndian.Uint32(key[4:8])
chacha20poly1305_amd64.go#L36: state[6] = binary.LittleEndian.Uint32(key[8:12])
chacha20poly1305_amd64.go#L37: state[7] = binary.LittleEndian.Uint32(key[12:16])
chacha20poly1305_amd64.go#L38: state[8] = binary.LittleEndian.Uint32(key[16:20])
chacha20poly1305_amd64.go#L39: state[9] = binary.LittleEndian.Uint32(key[20:24])
chacha20poly1305_amd64.go#L40: state[10] = binary.LittleEndian.Uint32(key[24:28])
chacha20poly1305_amd64.go#L41: state[11] = binary.LittleEndian.Uint32(key[28:32])
chacha20poly1305_amd64.go#L44: state[13] = binary.LittleEndian.Uint32(nonce[0:4])
chacha20poly1305_amd64.go#L45: state[14] = binary.LittleEndian.Uint32(nonce[4:8])
chacha20poly1305_amd64.go#L46: state[15] = binary.LittleEndian.Uint32(nonce[8:12])
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |